home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE03 / TYPECAST / MATHSU.DFM / MATHSU.txt
Text File  |  1995-07-08  |  1KB  |  73 lines

  1. object Form1: TForm1
  2.   Left = 214
  3.   Top = 423
  4.   BorderStyle = bsDialog
  5.   Caption = 'Multiplication'
  6.   ClientHeight = 38
  7.   ClientWidth = 427
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = [fsBold]
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 137
  17.     Top = 7
  18.     Width = 9
  19.     Height = 20
  20.     Caption = 'x'
  21.     Font.Color = clWindowText
  22.     Font.Height = -16
  23.     Font.Name = 'MS Sans Serif'
  24.     Font.Style = [fsBold]
  25.     ParentFont = False
  26.   end
  27.   object Label2: TLabel
  28.     Left = 281
  29.     Top = 7
  30.     Width = 11
  31.     Height = 20
  32.     Caption = '='
  33.     Font.Color = clWindowText
  34.     Font.Height = -16
  35.     Font.Name = 'MS Sans Serif'
  36.     Font.Style = [fsBold]
  37.     ParentFont = False
  38.   end
  39.   object Op1: TSpinEdit
  40.     Left = 8
  41.     Top = 8
  42.     Width = 121
  43.     Height = 22
  44.     MaxValue = 65535
  45.     MinValue = 0
  46.     TabOrder = 0
  47.     Value = 0
  48.     OnChange = OpChange
  49.   end
  50.   object Op2: TSpinEdit
  51.     Left = 152
  52.     Top = 8
  53.     Width = 121
  54.     Height = 22
  55.     MaxValue = 65535
  56.     MinValue = 0
  57.     TabOrder = 1
  58.     Value = 0
  59.     OnChange = OpChange
  60.   end
  61.   object Res: TSpinEdit
  62.     Left = 296
  63.     Top = 8
  64.     Width = 121
  65.     Height = 22
  66.     MaxValue = 0
  67.     MinValue = 0
  68.     ReadOnly = True
  69.     TabOrder = 2
  70.     Value = 0
  71.   end
  72. end
  73.